home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gcc / ixemlsrc.lha / ixemul / stdlib / abort.c next >
C/C++ Source or Header  |  1996-03-13  |  182b  |  12 lines

  1. #define KERNEL
  2. #include "ixemul.h"
  3.  
  4. void abort (void)
  5. {
  6.   syscall (SYS_kill, 0, SIGABRT);
  7.   /* if this should be caught, do exit directly... */
  8.  
  9.   ix_panic ("ABORT!");
  10.   exit(20);
  11. }
  12.